Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

634151 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/119 - Random Svg Generator/js

script.js cody/swapnilsparsh/30DaysOfJavaScript/119 - Random Svg Generator/js/script.js
148 Views
0 Comments
// CREDIT: https://github.com/boringdesigners/boring-avatars/blob/master/src/lib/utilities.js
function hashCode(name) {
let hash = 0;
for (let i = 0; i < name.length; i++) {
let character = name.charCodeAt(i);
hash = (hash << 5) - hash + character;
hash = hash & hash; // Convert to 32bit integer
}